home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 21 / CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso / CUCD / Programming / RTGMaster / demos / moon / BOOLEAN.H next >
C/C++ Source or Header  |  1996-03-05  |  123b  |  12 lines

  1. #ifndef _BOOLEAN_H
  2. #define _BOOLEAN_H
  3.  
  4. typedef enum
  5. {
  6.    false = 0,
  7.    true  = 1
  8. }
  9. boolean;
  10.  
  11. #endif  // #ifndef _BOOLEAN_H
  12.